home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / ssh_AllowedAuthentications.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  81 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  5. #      Erik Anderson <eanders@carmichaelsecurity.com>
  6. #      Added BugtraqID
  7. #
  8. # See the Nessus Scripts License for details
  9. #
  10.  
  11. if(description)
  12. {
  13.  script_id(10965);
  14.  script_bugtraq_id(4810);
  15.  script_version ("$Revision: 1.9 $");
  16.  
  17.  name["english"] = "SSH 3 AllowedAuthentication";
  18.  name["francais"] = "SSH 3 AllowedAuthentication";
  19.  script_name(english:name["english"], francais:name["francais"]);
  20.  
  21.  desc["english"] = "
  22. You are running a version of SSH which is older than 3.1.2
  23. and newer or equal to 3.0.0.
  24.  
  25. There is a vulnerability in this release that may, under
  26. some circumstances, allow users to authenticate using a 
  27. password whereas it is not explicitly listed as a valid
  28. authentication mechanism.
  29.  
  30.  
  31. An attacker may use this flaw to attempt to brute force
  32. a password using a dictionary attack (if the passwords
  33. used are weak).
  34.  
  35. Solution :
  36. Upgrade to version 3.1.2 of SSH which solves this problem.
  37.  
  38. Risk factor : Low";
  39.     
  40.     
  41.  
  42.  
  43.  script_description(english:desc["english"]);
  44.  
  45.  summary["english"] = "Checks for the remote SSH version";
  46.  summary["francais"] = "VΘrifie la version de SSH";
  47.  script_summary(english:summary["english"], francais:summary["francais"]);
  48.  
  49.  script_category(ACT_GATHER_INFO);
  50.  
  51.  
  52.  script_copyright(english:"This script is Copyright (C) 2002 Renaud Deraison",
  53.         francais:"Ce script est Copyright (C) 2002 Renaud Deraison");
  54.  family["english"] = "Gain a shell remotely";
  55.  family["francais"] = "Obtenir un shell α distance";
  56.  script_family(english:family["english"], francais:family["francais"]);
  57.  script_dependencie("ssh_detect.nasl");
  58.  script_require_ports("Services/ssh", 22);
  59.  exit(0);
  60. }
  61.  
  62. #
  63. # The script code starts here
  64. #
  65. include("backport.inc");
  66.  
  67. port = get_kb_item("Services/ssh");
  68. if(!port)port = 22;
  69.  
  70. banner = get_kb_item("SSH/banner/" + port);
  71. if ( ! banner ) exit(0);
  72. banner = tolower(get_backport_banner(banner:banner));
  73.  
  74.  
  75. if("openssh" >< banner)exit(0);
  76. if("f-secure" >< banner)exit(0);
  77. if("mpSSH" >< banner)exit(0);
  78.  
  79. if(ereg(pattern:"[-_](3\.(0\.[0-9]+)|(1\.[01])[^0-9]*)$", string:banner))
  80.     security_warning(port);
  81.